Keycloak REST Services 1.3.1.Final

Path: / admin / realms / {realm} / identity-provider / instances

Path parameters:
realm - realm name (not id!)

Sub-Resources
Resources
NameDescription
{alias}

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/identity-provider/instances 
POST /admin/realms/{realm}/identity-provider/instances 

Method Detail

GET /admin/realms/{realm}/identity-provider/instances

HTTP Example:
GET /admin/realms/{realm}/identity-provider/instances
API Example:

IdentityProvidersResource.getIdentityProviders({'realm': /* name realm name (not id!) */});

Output:
List<IdentityProviderRepresentation>
Produces:
application/json

POST /admin/realms/{realm}/identity-provider/instances

HTTP Example:
POST /admin/realms/{realm}/identity-provider/instances
API Example:

IdentityProvidersResource.create({'realm': /* name realm name (not id!) */,
  '$entity': …});

Input:
IdentityProviderRepresentation
Output:
Response
Consumes:
application/json

Keycloak REST Services 1.3.1.Final